Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / users / {id} / execute-actions-email

Send an email to the user with a link they can click to reset their password. The redirectUri and clientId parameters are optional. The default for the redirect is the account client.

Path parameters:
realm - realm name (not id!)
id -

Resource Methods
Method Summary
NameDescription
PUT /admin/realms/{realm}/users/{id}/execute-actions-email?redirect_uri=…&client_id=…Send an email to the user with a link they can click to reset their password.

Method Detail

PUT /admin/realms/{realm}/users/{id}/execute-actions-email

Send an email to the user with a link they can click to reset their password. The redirectUri and clientId parameters are optional. The default for the redirect is the account client.

HTTP Example:
PUT /admin/realms/{realm}/users/{id}/execute-actions-email?redirect_uri=…&client_id=…
API Example:

UsersResource.executeActionsEmail({'redirect_uri': /* redirectUri redirect uri */,
  'client_id': /* clientId client id */,
  'realm': /* name realm name (not id!) */,
  'id': /* id */,
  '$entity': /* Send an email to the user with a link they can click to reset their password. */});

Input:
List<String>
Output:
Response -
Query parameters:
redirect_uri - redirect uri
client_id - client id
Consumes:
application/json

Keycloak REST Services 1.5.0-Final